body{
    background-color: #f7ecdc ;   
   }

/* Style the top navigation bar */
.navbar {
    overflow: hidden; /* Hide overflow */
    background-color: #333; /* Dark background color */
  }
  /* Style the navigation bar links */
  .navbar a {
    float: left; /* Make sure that the links stay side-by-side */
    display: block; /* Change the display to block, for responsive reasons (see below) */
    color: white; /* White text color */
    text-align: center; /* Center the text */
    font-family: cursive; 
    padding: 14px 20px; /* Add some padding */
    text-decoration: none; /* Remove underline */
  }
  
  /* Right-aligned link */
  .navbar a.right {
    float: right; /* Float a link to the right */
  }
  
  /* Change color on hover/mouse-over */
  .navbar a:hover {
    background-color: #ddd; /* Grey background color */
    color: rgb(0, 0, 0); /* Black text color */
  }

  .header {
    padding: 80px; /* some padding */
    text-align: left; /* center the text */
    background-image: url('../img/Bulgarian.Food.jpg');/* Plovdiv City Header Background Image */
    background-size:contain;
    background-size:100% 100%;
    color: rgb(252, 252, 252); /* white text color */
    font-family: cursive;
    text-shadow: 1px 1px rgb(0, 0, 0);
    text-size-adjust: 10px;
  }

.header p {
    font-family:Arial, Helvetica, sans-serif; /* chaning the font on the text under the tile*/
    font-weight: bold;
    font-size: 22px;
}

/* Increase the font size of the <h1> element */
.headertitle { font-size: 25px;
}

body {
    background-color: #b13e3e;
    font-family: sans-serif; /* Set default font family */
    margin: 0;
    padding: 0;
}

.food {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ffffff; /* White background */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, Helvetica, sans-serif, sans-serif; /* Set font family */
    font-size: 16px; /* Set font size */
    color: #333; /* Set text color */
}

.food h2 {
    color: black;
    font-family: cursive;
    margin-top: 10px;
    font-size: 24px;
}

.food p {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.food a {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    text-decoration: none;
    color: #007bff;
}

.food a:hover {
    text-decoration: underline;
}  

.footer {
    padding: 20px; /* Some padding */
    text-align: center; /* Center text*/
    background: #ddd; /* Grey background */
  }
